net/http.http2ClientConn.goAway (field)

13 uses

	net/http (current package)
		h2_bundle.go#L7803: 	goAway           *http2GoAwayFrame             // if non-nil, the GoAwayFrame we received
		h2_bundle.go#L8365: 	old := cc.goAway
		h2_bundle.go#L8366: 	cc.goAway = f
		h2_bundle.go#L8373: 		cc.goAway.ErrCode = old.ErrCode
		h2_bundle.go#L8383: 		if streamID == 1 && cc.goAway.ErrCode != http2ErrCodeNo {
		h2_bundle.go#L8387: 			cs.abortStreamLocked(fmt.Errorf("http2: Transport received GOAWAY from server ErrCode:%v", cc.goAway.ErrCode))
		h2_bundle.go#L8466: 		Closing:              cc.closing || cc.singleUse || cc.doNotReuse || cc.goAway != nil,
		h2_bundle.go#L8508: 	st.canTakeNewRequest = cc.goAway == nil && !cc.closed && !cc.closing && maxConcurrentOkay &&
		h2_bundle.go#L9128: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		h2_bundle.go#L9789: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		h2_bundle.go#L9855: 	if cc.goAway != nil && http2isEOFOrNetReadError(err) {
		h2_bundle.go#L9857: 			LastStreamID: cc.goAway.LastStreamID,
		h2_bundle.go#L9858: 			ErrCode:      cc.goAway.ErrCode,